Fix stack vs heap confusion. (#168690, Torsten Schoenfeld)
authorMatthias Clasen <mclasen@redhat.com>
Mon, 28 Feb 2005 04:51:56 +0000 (04:51 +0000)
committerMatthias Clasen <matthiasc@src.gnome.org>
Mon, 28 Feb 2005 04:51:56 +0000 (04:51 +0000)
2005-02-27  Matthias Clasen  <mclasen@redhat.com>

* gtk/tmpl/gtktreemodel.sgml: Fix stack vs heap
confusion.  (#168690, Torsten Schoenfeld)

docs/reference/ChangeLog
docs/reference/gtk/tmpl/gtktreemodel.sgml

index f0d281bdc886bc47eacb1dbf1695372dda30532d..f81700066414a059799a12c3e94f5c23d42ff02e 100644 (file)
@@ -1,3 +1,8 @@
+2005-02-27  Matthias Clasen  <mclasen@redhat.com>
+
+       * gtk/tmpl/gtktreemodel.sgml: Fix stack vs heap 
+       confusion.  (#168690, Torsten Schoenfeld)
+
 2005-02-15  Matthias Clasen  <mclasen@redhat.com>
 
        * gtk/tmpl/gtkcalendar.sgml: Add some more 
index fd997b5ca19e74f398b596cc073793ffd521cc34..e5a14e758eb04aa335c51fe032b35b94c108606b 100644 (file)
@@ -65,7 +65,7 @@ generic pointers.  These are filled in by the model in a model-specific
 way.  One can convert a path to an iterator by calling
 gtk_tree_model_get_iter().  These iterators are the primary way of
 accessing a model and are similar to the iterators used by
-#GtkTextBuffer.  They are generally statically allocated on the heap and
+#GtkTextBuffer.  They are generally statically allocated on the stack and
 only used for a short time.  The model interface defines a set of
 operations using them for navigating the model.
 </para>